Skip to content

)}

Pattern.Then(Func) method

Defined in

Type: Pattern Namespace: System.Reactive.Joins Assembly: System.Reactive.dll

Applies to

netstandard2.0

public Plan<TResult> Then<TResult>(Func<TSource1, TSource2, TSource3, TSource4, TSource5, TSource6, TResult> selector)

Summary: Matches when all observable sequences have an available element and projects the elements by invoking the selector function.

Type parameters

NameDescription
TResultThe type of the elements in the result sequence, returned by the selector function.

Parameters

NameTypeDescription
selectorFuncSelector that will be invoked for elements in the source sequences.

Returns: Plan -- Plan that produces the projected results, to be fed (with other plans) to the When operator.

Exceptions

TypeCondition
System.ArgumentNullExceptionselector is null.